home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 014 / unbackup.arc / UNBACKUP.DOC < prev    next >
Encoding:
Text File  |  1986-07-21  |  2.0 KB  |  69 lines

  1.  
  2.  
  3.  
  4.  
  5.     UNBACKUP(PC-DOS)                UNBACKUP(PC-DOS)
  6.  
  7.     NAME
  8.         unbackup - restore contents of a diskette
  9.  
  10.     SYNOPSIS
  11.         unbackup [-osv] file1 ... filen
  12.  
  13.     DESCRIPTION
  14.         Unbackup has been designed to allow a user to restore
  15.         files from a DOS diskette which was created using the
  16.         DOS command 'backup'. Unbackup is not particular in
  17.         which order diskettes are restored and it will only
  18.         restore the contents of one diskette at a time.
  19.         Restoring a single diskette at a time is useful in batch
  20.         scripts where a user may interchange diskettes of
  21.         different backup sets by mistake.
  22.  
  23.         The meaning of the argument characters are:
  24.  
  25.         o    over write any existing files with the same name
  26.             (normally this is off)
  27.  
  28.         s    include subdirectory processing by restoring the
  29.             files to their original directory paths
  30.             (normally this is off)
  31.  
  32.         v    print out a list of the files being restored
  33.             (normally this is off)
  34.  
  35.         file    the list of files which to be restored. This may
  36.             contain wild card characters.
  37.  
  38.         Unbackup was written to facilitate development of bomb
  39.         proof batch scripts for the restoration of many files
  40.         from many different backup sets. The DOS 'restore'
  41.         command is particular about which diskette is inserted
  42.         from a particular backup set. Unbackup does not complain
  43.         about the order in which it will restore diskettes--the
  44.         command must be reissued for each diskette to restore.
  45.  
  46.  
  47.  
  48.  
  49.     EXAMPLES
  50.         To restore the files from a diskette in drive A to drive
  51.         C in the original directory paths with a progress
  52.         report, one would type:
  53.  
  54.             unbackup -sv a:*.*
  55.  
  56.         To restore the files from a diskette in drive B to the
  57.         current directory on drive C, one would type:
  58.  
  59.             unbackup b:*.*
  60.  
  61.     LIMITATIONS AND BUGS
  62.         Unbackup will only restore files to the currently
  63.         selected drive. It will create all directory paths 
  64.         which are necessary. A file broken across floppies
  65.         will not be properly restored--too bad, so sad.
  66.  
  67.     SEE ALSO
  68.         backup(PC-DOS), restore(PC-DOS)
  69.